home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src_win / WinHTTrack / splitter.h < prev    next >
C/C++ Source or Header  |  2003-11-22  |  2KB  |  78 lines

  1. // splitter.h : custom splitter control and frame that contains it
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSplitterFrame frame with splitter/wiper
  15.  
  16. class CSplitterFrame : public CMDIChildWnd
  17. {
  18.     DECLARE_DYNCREATE(CSplitterFrame)
  19. protected:
  20.     CSplitterFrame();   // protected constructor used by dynamic creation
  21.  
  22. public:
  23.   void SetMenuPrefs();
  24.     afx_msg void Onhide();
  25.   BOOL SetNewName(CString name);
  26.   BOOL SetSaved();
  27.   BOOL SetCurrentCategory(CString name);
  28.   CString GetCurrentCategory(void);
  29.  
  30.  // Attributes
  31. protected:
  32.     CSplitterWnd m_wndSplitter;
  33.   CString      m_projcateg;
  34.     //CStatusBar   m_wndStatusBar;
  35.     //CToolBar     m_wndToolBar;
  36.   NOTIFYICONDATA icnd;
  37.   //
  38.   afx_msg LRESULT IconRestore(WPARAM wParam,LPARAM lParam);
  39.  
  40. // Implementation
  41. public:
  42.   bool iconifie;
  43.   //
  44.     virtual ~CSplitterFrame();
  45.   virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  46.   virtual BOOL Create( LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle , const RECT& rect , CMDIFrameWnd* pParentWnd , CCreateContext* pContext );
  47.   CSplitterWnd* GetSplitter();
  48.   BOOL SetNewView(int row, int col, CRuntimeClass* pViewClass);
  49.   void EnableExtEntries(BOOL state);
  50.   void EnableSaveEntries(BOOL state);
  51.   
  52.   void IconChange(CString st);
  53.   void CheckRestore();
  54.   
  55.   // Generated message map functions
  56.   //{{AFX_MSG(CSplitterFrame)
  57.     afx_msg void OnMDIActivate(BOOL bActivate, CWnd* pActivateWnd, CWnd* pDeactivateWnd);
  58.     afx_msg void OnClose();
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64. //
  65.  
  66. class CViewExSplitWnd : public CSplitterWnd
  67. {
  68.     DECLARE_DYNAMIC(CViewExSplitWnd)
  69.  
  70. // Implementation
  71. public:
  72.     CViewExSplitWnd();
  73.     ~CViewExSplitWnd();
  74.     CWnd* GetActivePane(int* pRow = NULL, int* pCol = NULL);
  75. };
  76.  
  77.  
  78.